home *** CD-ROM | disk | FTP | other *** search
/ SGI Developer Toolbox 6.1 / SGI Developer Toolbox 6.1 - Disc 1.iso / toolbox / src / exampleCode / opengl / GLUT / mkmkfiles.sgi < prev    next >
Text File  |  1996-11-11  |  404b  |  13 lines

  1. #!/bin/csh -f
  2. echo "Setting up use of SGI Makefiles"
  3. echo ""
  4. echo "NOTE: If you have a Fortran compiler and IRIX 5.3, please see"
  5. echo "the instructions in README.fortran for building the GLUT Fortran"
  6. echo "API and sample programs.  Fortran code is not built by default."
  7. echo ""
  8. foreach i ( `find . -name Makefile.sgi -print` )
  9.    echo "Linking $i to $i:r"
  10.    rm -f $i:r
  11.    ln -s Makefile.sgi $i:r
  12. end
  13.